home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / c80tcog.lbr / ERROR.C < prev    next >
Text File  |  1985-08-09  |  384b  |  22 lines

  1. /* error - 3 small routines that crop up in Software Tools */
  2.  
  3. cant(name)            /* can't open file message */
  4. char *name;
  5. {
  6. remark(name);
  7. error(": can't open.");
  8. }                /* end cant */
  9.  
  10. error(msg)            /* display error message, then exit */
  11. char *msg;
  12. {
  13. remark(msg);
  14. exit();
  15. }
  16.  
  17. remark(msg)            /* display error message, then continue */
  18. char *msg;
  19. {
  20. fputs(msg, STDERR);
  21. }
  22.